com.sabro.jbusiness.sys
Enum SysDetalhe.SysDetalheEventType

java.lang.Object
  extended by java.lang.Enum<SysDetalhe.SysDetalheEventType>
      extended by com.sabro.jbusiness.sys.SysDetalhe.SysDetalheEventType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SysDetalhe.SysDetalheEventType>
Enclosing class:
SysDetalhe

public static enum SysDetalhe.SysDetalheEventType
extends java.lang.Enum<SysDetalhe.SysDetalheEventType>


Enum Constant Summary
SYSDETALHE_CLOSED
          Disparado quando o detalhe é fechado
SYSDETALHE_INVALIDATED
          Disparado quando os valores são invalidados
SYSDETALHE_REVALIDATED
          Disparado quando os valores são revalidados
SYSREGISTRO_LOADED
          Disparado quando os valores do registro selecionado são lidos do banco de dados
SYSVALOR_EDITBEGIN
          Disparado quando um valor começa a ser editado
SYSVALOR_EDITEND
          Disparado quando um valor termina de ser editado
SYSVALOR_LOADED
          Disparado quando o valor de um campo é obtido do banco de dados
SYSVALOR_SAVED
          Disparado quando o valor de um campo é salvo no banco de dados
SYSVALOR_SELECTED
          Disparado quando um valor é selecionado
SYSVALOR_UNSELECTED
          Disparado quando um valor é deselecionado
SYSVALOR_UPDATED
          Disparado quando o valor de um campo é alterado em memória
SYSVALOR_VLRLOADED
          Disparado quando o valor de um campo é obtido via procedure VLR
 
Method Summary
static SysDetalhe.SysDetalheEventType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SysDetalhe.SysDetalheEventType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SYSDETALHE_INVALIDATED

public static final SysDetalhe.SysDetalheEventType SYSDETALHE_INVALIDATED
Disparado quando os valores são invalidados


SYSDETALHE_REVALIDATED

public static final SysDetalhe.SysDetalheEventType SYSDETALHE_REVALIDATED
Disparado quando os valores são revalidados


SYSDETALHE_CLOSED

public static final SysDetalhe.SysDetalheEventType SYSDETALHE_CLOSED
Disparado quando o detalhe é fechado


SYSVALOR_SELECTED

public static final SysDetalhe.SysDetalheEventType SYSVALOR_SELECTED
Disparado quando um valor é selecionado


SYSVALOR_UNSELECTED

public static final SysDetalhe.SysDetalheEventType SYSVALOR_UNSELECTED
Disparado quando um valor é deselecionado


SYSVALOR_EDITBEGIN

public static final SysDetalhe.SysDetalheEventType SYSVALOR_EDITBEGIN
Disparado quando um valor começa a ser editado


SYSVALOR_EDITEND

public static final SysDetalhe.SysDetalheEventType SYSVALOR_EDITEND
Disparado quando um valor termina de ser editado


SYSVALOR_VLRLOADED

public static final SysDetalhe.SysDetalheEventType SYSVALOR_VLRLOADED
Disparado quando o valor de um campo é obtido via procedure VLR


SYSVALOR_UPDATED

public static final SysDetalhe.SysDetalheEventType SYSVALOR_UPDATED
Disparado quando o valor de um campo é alterado em memória


SYSVALOR_SAVED

public static final SysDetalhe.SysDetalheEventType SYSVALOR_SAVED
Disparado quando o valor de um campo é salvo no banco de dados


SYSVALOR_LOADED

public static final SysDetalhe.SysDetalheEventType SYSVALOR_LOADED
Disparado quando o valor de um campo é obtido do banco de dados


SYSREGISTRO_LOADED

public static final SysDetalhe.SysDetalheEventType SYSREGISTRO_LOADED
Disparado quando os valores do registro selecionado são lidos do banco de dados

Method Detail

values

public static SysDetalhe.SysDetalheEventType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SysDetalhe.SysDetalheEventType c : SysDetalhe.SysDetalheEventType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SysDetalhe.SysDetalheEventType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null